home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / RTFEDIT.PAK / GLOBALS.H < prev    next >
C/C++ Source or Header  |  1997-05-06  |  6KB  |  148 lines

  1. // THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
  2. // ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
  3. // THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
  4. // PARTICULAR PURPOSE.
  5. //
  6. // Copyright (C) 1993-1995  Microsoft Corporation.  All Rights Reserved.
  7. //
  8. // PURPOSE:
  9. //    Contains declarations for all globally scoped names in the program.
  10. //
  11.  
  12.  
  13. //-------------------------------------------------------------------------
  14. // Functions for handling main window messages.  The message-dispatching
  15. // mechanism expects all message-handling functions to have the following
  16. // prototype:
  17. //
  18. //     LRESULT FunctionName(HWND, UINT, WPARAM, LPARAM);
  19.  
  20. // **TODO**  Add message-handling function prototypes here.  Be sure to
  21. //           add the function names to the main window message table in
  22. //           generic.c.
  23.  
  24. LRESULT MsgCommand(HWND, UINT, WPARAM, LPARAM);
  25. LRESULT MsgCreate(HWND, UINT, WPARAM, LPARAM);
  26. LRESULT MsgDestroy(HWND, UINT, WPARAM, LPARAM);
  27. LRESULT MsgSize(HWND, UINT, WPARAM, LPARAM);
  28.  
  29.  
  30. //-------------------------------------------------------------------------
  31. // Functions for handling main window commands--ie. functions for
  32. // processing WM_COMMAND messages based on the wParam value.
  33. // The message-dispatching mechanism expects all command-handling
  34. // functions to have the following prototype:
  35. //
  36. //     LRESULT FunctionName(HWND, WORD, WORD, HWND);
  37.  
  38. // **TODO**  Add message-handling function prototypes here.  Be sure to
  39. //           add the function names to the main window command table in
  40. //           generic.c.
  41.  
  42. LRESULT CmdExit(HWND, WORD, WORD, HWND);
  43. LRESULT CmdAbout(HWND, WORD, WORD, HWND);
  44. LRESULT RTFEDIT_CmdBold(HWND, WORD, WORD, HWND);
  45. LRESULT RTFEDIT_CmdItalic(HWND, WORD, WORD, HWND);
  46. LRESULT RTFEDIT_CmdUnderline(HWND, WORD, WORD, HWND);
  47. LRESULT RTFEDIT_CmdFonts(HWND, WORD, WORD, HWND);
  48.  
  49.  
  50. //-------------------------------------------------------------------------
  51. // Global function prototypes.
  52.  
  53. // **TODO**  Add global function prototypes here.
  54.  
  55. BOOL InitApplication(HINSTANCE, int);
  56. BOOL CenterWindow(HWND, HWND);
  57.  
  58.     // Callback functions.  These are called by Windows.
  59.  
  60. // **TODO**  Add new callback function prototypes here.
  61.  
  62. LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM);
  63.  
  64.  
  65. //-------------------------------------------------------------------------
  66. // Global variable declarations.
  67.  
  68. extern HINSTANCE hInst;          // The current instance handle
  69. extern char      szAppName[];    // The name of this application
  70. extern char      szTitle[];      // The title bar text
  71.  
  72. // **TODO**  For NON-MDI applications, uncomment line 1 below and comment
  73. //           line 2.  For MDI applications, uncomment line 2 below, comment
  74. //           line 1, and then define hwndMDIClient as a global variable in
  75. //           INIT.C
  76. #define hwndMDIClient NULL        /* (1) Stub for NON-MDI applications. */
  77. // extern HWND hwndMDIClient;     /* (2) For MDI applications.          */
  78.  
  79.  
  80. //-------------------------------------------------------------------------
  81. // Message and command dispatch infrastructure.  The following type
  82. // definitions and functions are used by the message and command dispatching
  83. // mechanism and do not need to be changed.
  84.  
  85.     // Function pointer prototype for message handling functions.
  86. typedef LRESULT (*PFNMSG)(HWND,UINT,WPARAM,LPARAM);
  87.  
  88.     // Function pointer prototype for command handling functions.
  89. typedef LRESULT (*PFNCMD)(HWND,WORD,WORD,HWND);
  90.  
  91.     // Enumerated type used to determine which default window procedure
  92.     // should be called by the message- and command-dispatching mechanism
  93.     // if a message or command is not handled explicitly.
  94. typedef enum
  95. {
  96.    edwpNone,            // Do not call any default procedure.
  97.    edwpWindow,          // Call DefWindowProc.
  98.    edwpDialog,          // Call DefDlgProc (This should be used only for
  99.                         // custom dialogs - standard dialog use edwpNone).
  100.    edwpMDIChild,        // Call DefMDIChildProc.
  101.    edwpMDIFrame         // Call DefFrameProc.
  102. } EDWP;                // Enumeration for Default Window Procedures
  103.  
  104.     // This structure maps messages to message handling functions.
  105. typedef struct _MSD
  106. {
  107.     UINT   uMessage;
  108.     PFNMSG pfnmsg;
  109. } MSD;                 // MeSsage Dispatch structure
  110.  
  111.     // This structure contains all of the information that a window
  112.     // procedure passes to DispMessage in order to define the message
  113.     // dispatching behavior for the window.
  114. typedef struct _MSDI
  115. {
  116.     int  cmsd;          // Number of message dispatch structs in rgmsd
  117.     MSD *rgmsd;         // Table of message dispatch structures
  118.     EDWP edwp;          // Type of default window handler needed.
  119. } MSDI, FAR *LPMSDI;   // MeSsage Dipatch Information
  120.  
  121.     // This structure maps command IDs to command handling functions.
  122. typedef struct _CMD
  123. {
  124.     WORD   wCommand;
  125.     PFNCMD pfncmd;
  126. } CMD;                 // CoMmand Dispatch structure
  127.  
  128.     // This structure contains all of the information that a command
  129.     // message procedure passes to DispCommand in order to define the
  130.     // command dispatching behavior for the window.
  131. typedef struct _CMDI
  132. {
  133.     int  ccmd;          // Number of command dispatch structs in rgcmd
  134.     CMD *rgcmd;         // Table of command dispatch structures
  135.     EDWP edwp;          // Type of default window handler needed.
  136. } CMDI, FAR *LPCMDI;   // CoMmand Dispatch Information
  137.  
  138.     // Message and command dispatching functions.  They look up messages
  139.     // and commands in the dispatch tables and call the appropriate handler
  140.     // function.
  141. LRESULT DispMessage(LPMSDI, HWND, UINT, WPARAM, LPARAM);
  142. LRESULT DispCommand(LPCMDI, HWND, WPARAM, LPARAM);
  143.  
  144.     // Message dispatch information for the main window
  145. extern MSDI msdiMain;
  146.     // Command dispatch information for the main window
  147. extern CMDI cmdiMain;
  148.